home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / comm / bbs / trionbbs100.lha / Trion / scripts / viewarchive < prev    next >
AmigaDOS Script File  |  1997-06-30  |  800b  |  48 lines

  1. .KEY  file,archive,desc
  2. ;.DEF file=nix
  3. .BRA  <
  4. .KET  >
  5.  
  6.  
  7. ;wait 60 secs
  8.  
  9. ;;;  This script will be executed after the 'View' command is given
  10. ;;;  in the BBS , and tries to examine an archive.
  11.  
  12. ;;;  archive = "RAW" | "ZIP | "LHA" | "LZX" | "ZOO" | "ARJ" | "ARC" | "DMS"
  13.  
  14.  
  15. IF <archive> EQ raw
  16. ;   echo "Not an archive or unknown archive type."  ><desc>
  17.    trion:utils/unpack L <file> ><desc>       ;; Info on GIF and JPG
  18. EndIf
  19.  
  20. IF <archive> EQ zip
  21.    unzip -v <file>  ><desc>
  22. EndIf
  23.  
  24. IF <archive> EQ lha
  25.    lha l <file> ><desc>
  26. EndIf
  27.  
  28. IF <archive> EQ lzx
  29.    lzx l <file> ><desc>
  30. EndIf
  31.  
  32. IF <archive> EQ zoo
  33.    zoo -list <file> ><desc>
  34. EndIf
  35.  
  36. IF <archive> EQ arj
  37.    unarj l <file> ><desc>
  38. EndIf
  39.  
  40. IF <archive> EQ arc
  41.    arc l <file> ><desc>
  42. EndIf
  43.  
  44. IF <archive> EQ dms
  45.    dms View <file> FULL ><desc>
  46. EndIf
  47.  
  48.